home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / jobcntrl < prev    next >
Text File  |  1993-07-15  |  482b  |  21 lines

  1. /*----------------------------------------------------------------------
  2.      This routine returns 1 if job control is available.  Note, thiis
  3.      could be some type of fake job control.  It doesn't have to be
  4.      real BSD-style job control.
  5.   ----*/
  6. have_job_control()
  7. {
  8.     return 1;
  9. }
  10.  
  11.  
  12. /*----------------------------------------------------------------------
  13.     If we don't have job control, this routine is never called.
  14.   ----*/
  15. stop_process()
  16. {
  17.     kill(0, SIGSTOP); 
  18. }
  19.  
  20.  
  21.